|
Protege 3.4.8 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.AbstractSequentialList
edu.stanford.smi.protege.util.HashList
public class HashList
A list the provides fast access to its elements. This code was copied from the JDK LinkedList class and hacked. JDK 1.4 offers a standard version of this class which we will soon switch to.
| Field Summary |
|---|
| Fields inherited from class java.util.AbstractList |
|---|
modCount |
| Constructor Summary | |
|---|---|
HashList()
Deprecated. Constructs an empty list. |
|
HashList(Collection c)
Deprecated. Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator. |
|
| Method Summary | |
|---|---|
void |
add(int index,
Object element)
Deprecated. Inserts the specified element at the specified position in this list. |
boolean |
add(Object o)
Deprecated. Appends the specified element to the end of this list. |
boolean |
addAll(Collection c)
Deprecated. Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator. |
boolean |
addAll(int index,
Collection c)
Deprecated. Inserts all of the elements in the specified collection into this list, starting at the specified position. |
void |
addFirst(Object o)
Deprecated. Inserts the given element at the beginning of this list. |
void |
addLast(Object o)
Deprecated. Appends the given element to the end of this list. |
void |
clear()
Deprecated. Removes all of the elements from this list. |
Object |
clone()
Deprecated. Returns a shallow copy of this LinkedList . |
boolean |
contains(Object o)
Deprecated. Returns true if this list contains the specified element. |
Object |
get(int index)
Deprecated. Returns the element at the specified position in this list. |
Object |
getFirst()
Deprecated. Returns the first element in this list. |
Object |
getLast()
Deprecated. Returns the last element in this list. |
List |
getUnmodifiableList()
Deprecated. |
int |
indexOf(Object o)
Deprecated. Returns the index in this list of the first occurrence of the specified element, or -1 if the List does not contain this element. |
int |
lastIndexOf(Object o)
Deprecated. Returns the index in this list of the last occurrence of the specified element, or -1 if the list does not contain this element. |
ListIterator |
listIterator(int index)
Deprecated. Returns a list-iterator of the elements in this list (in proper sequence), starting at the specified position in the list. |
Object |
remove(int index)
Deprecated. Removes the element at the specified position in this list. |
boolean |
remove(Object o)
Deprecated. Removes the first occurrence of the specified element in this list. |
Object |
removeFirst()
Deprecated. Removes and returns the first element from this list. |
Object |
removeLast()
Deprecated. Removes and returns the last element from this list. |
void |
replace(int index,
Object to)
Deprecated. |
void |
replace(Object from,
Object to)
Deprecated. |
Object |
set(int index,
Object element)
Deprecated. Replaces the element at the specified position in this list with the specified element. |
int |
size()
Deprecated. Returns the number of elements in this list. |
Object[] |
toArray()
Deprecated. Returns an array containing all of the elements in this list in the correct order. |
Object[] |
toArray(Object[] a)
Deprecated. Returns an array containing all of the elements in this list in the correct order. |
String |
toString()
Deprecated. |
| Methods inherited from class java.util.AbstractSequentialList |
|---|
iterator |
| Methods inherited from class java.util.AbstractList |
|---|
equals, hashCode, listIterator, removeRange, subList |
| Methods inherited from class java.util.AbstractCollection |
|---|
containsAll, isEmpty, removeAll, retainAll |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.List |
|---|
containsAll, isEmpty, removeAll, retainAll |
| Constructor Detail |
|---|
public HashList()
public HashList(Collection c)
c - Description of Parameter| Method Detail |
|---|
public void add(int index,
Object element)
add in interface Listadd in class AbstractSequentialListindex - index at which the specified element is to be inserted.element - element to be inserted.
IndexOutOfBoundsException - if the specified index is out
of range ( index < 0 || index > size() ).public boolean add(Object o)
add in interface Collectionadd in interface Listadd in class AbstractListo - element to be appended to this list.
public boolean addAll(int index,
Collection c)
addAll in interface ListaddAll in class AbstractSequentialListindex - index at which to insert first element from the specified
collection.c - elements to be inserted into this list.
IndexOutOfBoundsException - if the specified index is out of
range ( index < 0 || index > size() ).public boolean addAll(Collection c)
addAll in interface CollectionaddAll in interface ListaddAll in class AbstractCollectionc - elements to be inserted into this list.
IndexOutOfBoundsException - if the specified index is out of
range ( index < 0 || index > size() ).public void addFirst(Object o)
o - The feature to be added to the First attributepublic void addLast(Object o)
o - The feature to be added to the Last attributepublic void clear()
clear in interface Collectionclear in interface Listclear in class AbstractListpublic Object clone()
clone in class Objectpublic boolean contains(Object o)
contains in interface Collectioncontains in interface Listcontains in class AbstractCollectiono - element whose presence in this list is to be tested.
public Object get(int index)
get in interface Listget in class AbstractSequentialListindex - index of element to return.
IndexOutOfBoundsException - if the specified index is is out
of range ( index < 0 || index >= size() ).public Object getFirst()
public Object getLast()
NoSuchElementException - if this list is empty.public List getUnmodifiableList()
public int indexOf(Object o)
indexOf in interface ListindexOf in class AbstractListo - element to search for.
public int lastIndexOf(Object o)
lastIndexOf in interface ListlastIndexOf in class AbstractListo - element to search for.
public ListIterator listIterator(int index)
The list-iterator is fail-fast : if the list is structurally modified at any time after the Iterator is created, in any way except through the list-iterator's own remove or add methods, the list-iterator will throw a ConcurrentModificationException . Thus, in the face of concurrent modification, the iterator fails quickly and cleanly, rather than risking arbitrary, non-deterministic behavior at an undetermined time in the future.
listIterator in interface ListlistIterator in class AbstractSequentialListindex - index of first element to be returned from the
list-iterator (by a call to next ).
IndexOutOfBoundsException - if index is out of range (
index < 0 || index > size() ).List.listIterator(int)public Object remove(int index)
remove in interface Listremove in class AbstractSequentialListindex - the index of the element to removed.
IndexOutOfBoundsException - if the specified index is out of
range ( index < 0 || index >= size() ).public boolean remove(Object o)
remove in interface Collectionremove in interface Listremove in class AbstractCollectiono - element to be removed from this list, if present.
public Object removeFirst()
NoSuchElementException - if this list is empty.public Object removeLast()
NoSuchElementException - if this list is empty.
public void replace(int index,
Object to)
public void replace(Object from,
Object to)
public Object set(int index,
Object element)
set in interface Listset in class AbstractSequentialListindex - index of element to replace.element - element to be stored at the specified position.
IndexOutOfBoundsException - if the specified index is out
of range ( index < 0 || index >= size() ).public int size()
size in interface Collectionsize in interface Listsize in class AbstractCollectionpublic Object[] toArray()
toArray in interface CollectiontoArray in interface ListtoArray in class AbstractCollectionpublic Object[] toArray(Object[] a)
If the list fits in the specified array with room to spare (i.e., the array has more elements than the list), the element in the array immediately following the end of the collection is set to null. This is useful in determining the length of the list only if the caller knows that the list does not contain any null elements.
toArray in interface CollectiontoArray in interface ListtoArray in class AbstractCollectiona - the array into which the elements of the list are to be
stored, if it is big enough; otherwise, a new array of the same
runtime type is allocated for this purpose.
ArrayStoreException - if the runtime type of a is not a
supertype of the runtime type of every element in this list.public String toString()
toString in class AbstractCollection
|
Protege 3.4.8 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||